home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-01-25 | 470 b | 8 lines | [TEXT/ToyS] |
- tell application "FileMaker Pro"
- sort first layout of database 2 by field 2 of database 2
- sort first database -- not specifying a field will unsort the database
- sort by field "b" -- not specifying a layout defaults to the current layout
- sort first layout by {field "a"} -- not specifying a sort order defaults to ascending
- sort by {field "a", field "b"} in order {descending, ascending}
- sort database 2 -- not specifying a field or layout unsorts database
- end tell